home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 8: LINUX Games / Linux Cubed Series 8 - LINUX Games.iso / games / x11 / strategy / xpuzzles.3 / xpuzzles / xpuzzles-5.3.1 / xskewb / Skewb.h < prev    next >
C/C++ Source or Header  |  1996-02-05  |  2KB  |  86 lines

  1. /*
  2. # X-BASED SKEWB
  3. #
  4. #  Skewb.h
  5. #
  6. ###
  7. #
  8. #  Copyright (c) 1994 - 96    David Albert Bagley, bagleyd@hertz.njit.edu
  9. #
  10. #                   All Rights Reserved
  11. #
  12. #  Permission to use, copy, modify, and distribute this software and
  13. #  its documentation for any purpose and without fee is hereby granted,
  14. #  provided that the above copyright notice appear in all copies and
  15. #  that both that copyright notice and this permission notice appear in
  16. #  supporting documentation, and that the name of the author not be
  17. #  used in advertising or publicity pertaining to distribution of the
  18. #  software without specific, written prior permission.
  19. #
  20. #  This program is distributed in the hope that it will be "playable",
  21. #  but WITHOUT ANY WARRANTY; without even the implied warranty of
  22. #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  23. #
  24. */
  25.  
  26. /* Public header file for Skewb */
  27.  
  28. #ifndef _XtSkewb_h
  29. #define _XtSkewb_h
  30.  
  31. /***********************************************************************
  32.  *
  33.  * Skewb Widget
  34.  *
  35.  ***********************************************************************/
  36.  
  37. #define XtNselectCallback "selectCallback"
  38. #define XtNorient "orient"
  39. #define XtNmono "mono"
  40. #define XtNface "face"
  41. #define XtNpos "position"
  42. #define XtNdirection "direction"
  43. #define XtNpractice "practice"
  44. #define XtNstart "start"
  45. #define XtNpieceBorder "pieceBorder"
  46. #define XtNfaceColor0 "faceColor0"
  47. #define XtNfaceColor1 "faceColor1"
  48. #define XtNfaceColor2 "faceColor2"
  49. #define XtNfaceColor3 "faceColor3"
  50. #define XtNfaceColor4 "faceColor4"
  51. #define XtNfaceColor5 "faceColor5"
  52. #define XtCOrient "Orient"
  53. #define XtCMono "Mono"
  54. #define XtCFace "Face"
  55. #define XtCPos "Position"
  56. #define XtCDirection "Direction"
  57.  
  58. #define SKEWB_RESTORE (-4)
  59. #define SKEWB_RESET (-3)
  60. #define SKEWB_ILLEGAL (-1)
  61. #define SKEWB_IGNORE (-1)
  62. #define SKEWB_MOVED 0
  63. #define SKEWB_CONTROL 1
  64. #define SKEWB_SOLVED 2
  65. #define SKEWB_PRACTICE 3
  66. #define SKEWB_RANDOMIZE 4
  67. #define SKEWB_DEC 5
  68. #define SKEWB_ORIENT 6
  69. #define SKEWB_INC 7
  70. #define SKEWB_COMPUTED 8
  71. #define SKEWB_UNDO 9
  72.  
  73. typedef struct _SkewbClassRec *SkewbWidgetClass;
  74. typedef struct _SkewbRec *SkewbWidget;
  75.  
  76. extern WidgetClass skewbWidgetClass;
  77.  
  78. typedef struct {
  79.   XEvent *event;
  80.   int reason;
  81.   int face, position, direction;
  82. } skewbCallbackStruct;
  83.  
  84. #endif _XtSkewb_h
  85. /* DON'T ADD STUFF AFTER THIS #endif */
  86.